HTMLify
style.css
Views: 8 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | * { margin: 0; padding: 0; box-sizing: border-box; user-select: none; font-family: sans-serif; } :root { --main-color: rgb(7, 7, 55); } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: var(--main-color); } .container { background: #fff; padding: 30px; } .container h2 { margin-bottom: 40px; text-align: center; font-size: 26px; color: var(--main-color); } input { padding: 20px; user-select: none; height: 50px; width: 400px; border: none; outline: none; border: 2px solid var(--main-color); font-size: 20px; } .buttons { display: flex; justify-content: space-around; align-items: center; } button { font-size: 15px; margin-top: 40px; border: 2px solid var(--main-color); width: 155px; height: 50px; text-align: center; background-color: var(--main-color); color: white; text-transform: uppercase; cursor: pointer; } |